home *** CD-ROM | disk | FTP | other *** search
/ Delphi Magazine Collection 2001 / Delphi Magazine Collection 20001 (2001).iso / DISKS / Issue61 / Contract / SimpleAssertFrm.dfm < prev    next >
Text File  |  2000-08-06  |  864b  |  47 lines

  1. object Form1: TForm1
  2.   Left = 402
  3.   Top = 222
  4.   Width = 336
  5.   Height = 81
  6.   Caption = 'Calculate Square Root Example'
  7.   Color = clBtnFace
  8.   Font.Charset = DEFAULT_CHARSET
  9.   Font.Color = clWindowText
  10.   Font.Height = -11
  11.   Font.Name = 'MS Sans Serif'
  12.   Font.Style = []
  13.   OldCreateOrder = False
  14.   PixelsPerInch = 96
  15.   TextHeight = 13
  16.   object lblEquals: TLabel
  17.     Left = 177
  18.     Top = 20
  19.     Width = 6
  20.     Height = 13
  21.     Caption = '='
  22.   end
  23.   object edtValue: TEdit
  24.     Left = 9
  25.     Top = 16
  26.     Width = 78
  27.     Height = 21
  28.     TabOrder = 0
  29.   end
  30.   object btnCalc: TButton
  31.     Left = 95
  32.     Top = 15
  33.     Width = 75
  34.     Height = 25
  35.     Caption = 'Calculate'
  36.     TabOrder = 1
  37.     OnClick = btnCalcClick
  38.   end
  39.   object edtResult: TEdit
  40.     Left = 192
  41.     Top = 16
  42.     Width = 121
  43.     Height = 21
  44.     TabOrder = 2
  45.   end
  46. end
  47.